home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / execve.c < prev    next >
C/C++ Source or Header  |  1991-12-20  |  2KB  |  69 lines

  1. /* 
  2.  * execve.c --
  3.  *
  4.  *    Procedure to emulate the UNIX execve kernel call under Sprite.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/execve.c,v 1.2 88/10/28 08:58:01 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "sprite.h"
  21. #include "proc.h"
  22.  
  23. #include "compatInt.h"
  24.  
  25. /*
  26.  * The variable below is a secret trap door that can be set
  27.  * to non-zero to force the next exec to put the process into
  28.  * the debugger before it executes its first instruction.
  29.  */
  30.  
  31. int _execDebug = 0;
  32.  
  33.  
  34. /*
  35.  *----------------------------------------------------------------------
  36.  *
  37.  * execve --
  38.  *
  39.  *    Procedure to map from Unix execve system call to Sprite Proc_ExecEnv.
  40.  *
  41.  * Results:
  42.  *    execve() should never return.  If it does, however, UNIX_ERROR is
  43.  *    returned.
  44.  *
  45.  * Side effects:
  46.  *    Any open streams are closed, then the process invoking execve() is
  47.  *    terminated.
  48.  *
  49.  *----------------------------------------------------------------------
  50.  */
  51.  
  52. int
  53. execve(name, argv, envp)
  54.     char *name;            /* name of file to exec */
  55.     char *argv[];        /* array of arguments */
  56.     char *envp[];        /* array of environment pointers */
  57. {
  58.     ReturnStatus status;    /* result returned by Sprite system calls  */
  59.  
  60.     status = Proc_ExecEnv(name, argv, envp, _execDebug);
  61.  
  62.     /*
  63.      * We should never reach this point, regardless of status value.
  64.      */
  65.  
  66.     errno = Compat_MapCode(status);
  67.     return(UNIX_ERROR);
  68. }
  69.